翻訳と辞書
Words near each other
・ Stackhousia minima
・ Stackhousia monogyna
・ Stackhousia subterranea
・ Stackhousia viminea
・ Stackhousiaceae
・ Stackin' Chips
・ Stacking
・ Stacking (chemistry)
・ Stacking (video game)
・ Stacking factor
・ Stacking fault
・ Stacking plan
・ Stacking velocity
・ Stacking window manager
・ Stacking-fault energy
Stackless Python
・ StackMat timer
・ Stackpole (disambiguation)
・ Stackpole and Castlemartin
・ Stackpole Books
・ Stackpole Estate
・ Stackpole Rocks
・ Stackridge
・ Stackridge (album)
・ Stacks (album)
・ Stacks (Mac OS)
・ Stacks (rapper)
・ Stacks Bluff
・ Stacks Project
・ Stacksteads


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Stackless Python : ウィキペディア英語版
Stackless Python

Stackless Python, or Stackless, is a Python programming language interpreter, so named because it avoids depending on the C call stack for its own stack. The most prominent feature of Stackless is microthreads, which avoid much of the overhead associated with usual operating system threads. In addition to Python features, Stackless also adds support for coroutines, communication channels and task serialization.
== Design ==
With Stackless Python, a running program is split into microthreads that are managed by the language interpreter itself, not the operating system kernelcontext switching and task scheduling is done purely in the interpreter (these are thus also regarded as a form of green thread). Microthreads manage the execution of different subtasks in a program on a same CPU core. Thus, they are an alternative to event-based asynchronous programming and also avoid the overhead of using separate threads for single-core programs (because no mode switching between user mode and kernel mode needs to be done, so CPU usage can be reduced).
Although microthreads make it easier to deal with running subtasks on a single core, Stackless Python neither removes Python's Global Interpreter Lock nor utilises multiple threads and/or processes. So it allows only cooperative multitasking on a shared CPU and not parallelism or preemption. To utilise multiple CPU cores, one would still need to build an interprocess communication on top of Stackless Python processes.
Due to the considerable number of changes in the source, Stackless Python cannot be installed on a preexisting Python installation as an extension or library. It is instead a complete Python distribution in itself. The majority of Stackless's features have also been implemented in PyPy, a self-hosting Python interpreter and JIT compiler.〔http://pypy.readthedocs.org/en/latest/stackless.html〕

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Stackless Python」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.